/* *{
	padding: 0;
	margin: 0;
	font-family: sans-serif;
} */
p {
	margin-top: 10px;
	font-size: 13px;
	text-align: justify;
}

.container,
.book-content {
	display: flex;
	justify-content: center;
	align-items: center;
}

.book-content {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* .container{
	width: 100%;
	height: 100vh;
	background: #2d6f75;
} */
.book-content {
	/* margin-left: 150px; */
	width: 650%;
	min-width: 250px;
	max-width: 400px;
	height: 600px;
	position: relative;
	perspective: 1000px;
	transition: 1s;
}

.book {
	position: absolute;
	width: 65%;
	height: 100%;
	transition: 1s;
	transform-style: preserve-3d;
	transform-origin: left;
}

.face-front,
.face-back {
	width: 200%;
	height: 100%;
	background: white;
	padding: 15px;
	box-sizing: border-box;
	overflow: hidden;
}

.face-front {
	box-shadow: inset 3px 0px 20px -7px black;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.face-back {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateZ(-1px) rotateY(180deg);
	box-shadow: inset -3px 1px 20px -7px black;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

/* Clases que se agregaran con Javascript */

.trnsf {
	transform: translateX(300px);
}

.trnsf-reset {
	transform: translateX(0px);
}

/* @media para hacer el texto responsivo */

@media screen and (max-width: 800px) {
	p {
		font-size: 12px;
	}
}